home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
internet
/
irc_i_dodatki
/
amirc1_57
/
rexx
/
sendbrowser.amirx
< prev
next >
Wrap
Text File
|
1996-03-28
|
1KB
|
38 lines
/**************************************************************************/
/* Script to give the URL of the URL-Grabber of AmIRC to your currently */
/* running WWW-Browser. Currently supported are IBrowse, AWeb and AMosaic */
/* If you miss any features, or find any bugs, please report them to */
/* the address below. If you make any changes to the script, please */
/* send a copy of it to me. */
/* Also it would be nice if you would send me a mail if you use this */
/* and find it useful :-) */
/* This script is $Ver: 1.0 */
/* Author: Markus 'lammy' Lamers; E-Mail: markus.lamers@tu-clausthal.de */
/* thanx to Peter "Stoebi" Schulz for his help */
/**************************************************************************/
parse arg args
options results
if show('P','IBROWSE.1') then do
address 'IBROWSE.1'
GOTOURL args
Exit
end
if show('P','AWEB.1') then do
address 'AWEB.1'
OPEN args
Exit
end
if show('P','AMOSAIC.1') then do
address 'AMOSAIC.1'
JUMP URL args
Exit
end
'echo You must start your WWW-Browser first ;)'
EXIT 10